home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / n_b_v203.zip / GBOXVIEW.DMO < prev    next >
Text File  |  1996-07-04  |  3KB  |  56 lines

  1. $if 0
  2.     ┌──────────────────────────╖                        PowerBASIC v3.20
  3.  ┌──┤          DASoft          ╟──────────────────────┬──────────────────╖
  4.  │  ├──────────────────────────╢    Copyright 1995    │ DATE: 1995-10-01 ╟─╖
  5.  │  │ FILE NAME   GBOXVIEW.DMO ║          by          ╘════════════════─ ║ ║
  6.  │  │                          ║  Don Schullian, Jr.                     ║ ║
  7.  │  ╘══════════════════════════╝                                         ║ ║
  8.  │ A license is hereby granted to the holder to use this source code in  ║ ║
  9.  │ any program, commercial or otherwise,  without receiving the express  ║ ║
  10.  │ permission of the copyright holder and without paying any royalties,  ║ ║
  11.  │ as long as this code is not distributed in any compilable format.     ║ ║
  12.  │  IE: source code files, PowerBASIC Unit files, and printed listings   ║ ║
  13.  ╘═╤═════════════════════════════════════════════════════════════════════╝ ║
  14.    │                ....................................                   ║
  15.    ╘═══════════════════════════════════════════════════════════════════════╝
  16. $endif
  17.  
  18. '.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°
  19. ' ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° °
  20. $INCLUDE "DAS-NBV1.INC"
  21. SCREEN 12
  22. CLS
  23. GraphicSETUP
  24. COLOR 7, 0
  25. ? "┌─────────────────────────────────────────────────────────────────────────
  26. ? "│ SetViewWindow ( C1%, R1%, C2%, R2% )
  27. ? "│ PURPOSE: set a view area for all graphics routines in this package
  28. ? "│  PARAMS:   C1% left-most column ( 0 -> 639 )
  29. ? "│            R1% top most row     ( 0 -> 479 )
  30. ? "│            C2% right most column
  31. ? "│            R2% bottom most row
  32. ? "│
  33. ? "│ GetViewWindow ( C1%, R1%, C2%, R2% )
  34. ? "│ PURPOSE: return the current parameters
  35. ? "│  PARAMS: see above
  36. ? "│
  37. ? "│ ViewSCREEN ()
  38. ? "│ PURPOSE: reset the view window to the whole screen
  39. ? "└─────────────────────────────────────────────────────────────────────────
  40.  
  41. DELAY 1                                         '┌───────────────────────────
  42.                                                 '│
  43. GBoxDRAW       10, 300, 319, 400, 0, 3, 9       '│ draw a perimeter box
  44. SetViewWindow  11, 301, 318, 399                '│ set wndo to inside the box
  45.                                                 '│
  46. GLineDRAW       0, 350, 639, 350, 0, 3, 15      '│ draw lines through the box
  47. GLineDRAW     165, 150, 165, 479, 0, 3, 14      '│ and it can't be done!
  48.                                                 '│
  49. GetViewWindow C1%, R1%, C2%, R2%                '│ get the wndo params
  50. PRINT USING "### ### ### ###"; C1%,R1%,C2%,R2%  '│ print them
  51. ViewSCREEN                                      '│ reset to the whole screen
  52.                                                 '│
  53. WHILE NOT INSTAT : WEND                         '│
  54. CLS                                             '│
  55. SCREEN 0                                        '└──────────────────────────
  56.